home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-05-18 | 344 b | 20 lines | [TEXT/CWIE] |
- //Copyright (c) 1997 Aidan Cully
- //All rights reserved
-
- #ifndef __GROWLAYOUT_H
- #define __GROWLAYOUT_H
-
- #include "CLLayout.h"
-
- class TGrowLayout:
- public TLayoutBranch
- {
- protected:
- TLayoutLeaf *mRealChild, *mGrowBox;
- virtual void BuildChildren();
- public:
- TGrowLayout( TLayoutBranch*, TLayoutLeaf* );
- Boolean MakeActive( Boolean );
- };
-
- #endif